Component org.nuxeo.ecm.platform.threed.renditions
In bundle org.nuxeo.ecm.platform.threed
Requirements
Resolution Order
482
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.threed.renditions--renditionDefinitionProviders
- org.nuxeo.ecm.platform.threed.renditions--filters
XML Source
<?xml version="1.0" encoding="UTF-8"?>
<component name="org.nuxeo.ecm.platform.threed.renditions">
<require>org.nuxeo.ecm.platform.rendition.contrib</require>
<extension target="org.nuxeo.ecm.platform.rendition.service.RenditionService"
point="renditionDefinitionProviders">
<renditionDefinitionProvider name="threedRenditionDefinitionProvider"
class="org.nuxeo.ecm.platform.threed.rendition.ThreeDRenditionDefinitionProvider">
<filters>
<filter-id>hasThreeDFacet</filter-id>
</filters>
</renditionDefinitionProvider>
</extension>
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="filters">
<filter id="hasThreeDFacet">
<rule grant="true">
<facet>ThreeD</facet>
</rule>
</filter>
<filter id="allowPDFRendition" append="true">
<rule grant="false">
<facet>ThreeD</facet>
</rule>
</filter>
</extension>
</component>